-
Notifications
You must be signed in to change notification settings - Fork 592
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
chore: minor updates for build system improvements #19784
Conversation
Signed-off-by: Noah Watkins <noahwatkins@gmail.com>
Signed-off-by: Noah Watkins <noahwatkins@gmail.com>
Signed-off-by: Noah Watkins <noahwatkins@gmail.com>
Signed-off-by: Noah Watkins <noahwatkins@gmail.com>
std::btree_set in newer abseil returns const iterators (like std::set - https://en.cppreference.com/w/cpp/container/set/begin). the rationale for this is that the container is indexing a T but the compiler can't determine which parts of T are used in the comparison function, so it stays conservative. i manually looked and it seemed as tho the end field was never involved in comparisons, so this is probably safe. but btree_map would probably be clearer where you put the mutable parts in the value. we could also remove and then re-insert to make compiler happy. Signed-off-by: Noah Watkins <noahwatkins@gmail.com>
Signed-off-by: Noah Watkins <noahwatkins@gmail.com>
Makes for finer grained libraries in the bazel build. Signed-off-by: Noah Watkins <noahwatkins@gmail.com>
Signed-off-by: Noah Watkins <noahwatkins@gmail.com>
new failures in https://buildkite.com/redpanda/redpanda/builds/50135#01900a26-8398-47f2-b23d-34e875f14428:
new failures in https://buildkite.com/redpanda/redpanda/builds/50141#01900ad8-c82c-4f3a-b1b9-bd453d4c3d48:
|
ducktape was retried in https://buildkite.com/redpanda/redpanda/builds/50141#01900ad7-fdca-4350-9dec-b4ed558400e0 ducktape was retried in https://buildkite.com/redpanda/redpanda/builds/50141#01900ad8-c827-494a-bd05-609436883962 |
Failure was #19632 which was fixed an hour ago, but we missed the cut-off. |
Backports Required
Release Notes